home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gprof / core.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  596 b   |  18 lines

  1. #ifndef core_h
  2. #define core_h
  3.  
  4. #include "bfd.h"
  5.  
  6. extern bfd *core_bfd;        /* bfd for core-file */
  7. extern int core_num_syms;    /* # of entries in symbol-table */
  8. extern asymbol **core_syms;    /* symbol table in a.out */
  9. extern asection *core_text_sect;    /* core text section */
  10. extern PTR core_text_space;    /* text space of a.out in core */
  11.  
  12. extern void core_init PARAMS ((const char *a_out_name));
  13. extern void core_get_text_space PARAMS ((bfd * core_bfd));
  14. extern void core_create_function_syms PARAMS ((bfd * core_bfd));
  15. extern void core_create_line_syms PARAMS ((bfd * core_bfd));
  16.  
  17. #endif /* core_h */
  18.